home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / CDTV / cdxltools1-11 / Code / MakeFile < prev    next >
Encoding:
Makefile  |  1991-10-21  |  489 b   |  21 lines

  1. #######################################################################
  2.  
  3. O    =    obj/
  4. LIBS    =    lib:lc.lib lib:amiga.lib
  5.  
  6. #######################################################################
  7.  
  8. CFLAGS=        -. -cafkqrt -j171w -j170
  9. LOPTS  =    NODEBUG SMALLCODE SMALLDATA
  10. .c.o:
  11.         lc $(CFLAGS) -o$O$*.o $*.c
  12.  
  13. #######################################################################
  14.  
  15. All:        Example
  16.  
  17. Example:    $OExample.o
  18.         blink LIB:c.o $OExample.o TO $> LIB $(LIBS) $(LOPTS)
  19.  
  20. $OExample.o:    Example.c pan.h
  21.